home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / allfiles / angry / scene1_2.dir / 00140_Script_back to intro button < prev    next >
Text File  |  1999-03-01  |  441b  |  33 lines

  1.  
  2. on mouseWithin me
  3.   cursor [the memberNum of member "pointy", the memberNum of member "pointy_mask"]
  4.   
  5.   
  6. end
  7.  
  8. on mouseLeave me
  9.   cursor -1
  10.   
  11.   
  12. end
  13.  
  14. on mouseDown me
  15.   
  16.   repeat with x = 1 to 6
  17.     if soundBusy(x) then 
  18.       set the volume of sound x to 255
  19.       sound stop x
  20.     end if
  21.   end repeat
  22.   cursor 200
  23.   
  24. end
  25.  
  26. on mouseUp me
  27.   cursor -1
  28.   
  29.   
  30.   go to frame "welcomeBack" of movie "intro"
  31. end 
  32.  
  33.